home *** CD-ROM | disk | FTP | other *** search
- <SCRIPT LANGUAGE="JavaScript">
- <!--
- var editOptionDisabled = (!isNavigator && !isIE4);
-
- function up() {
- select = document.forms[0].sl.selectedIndex;
- if (select > 0) {
- prev = select - 1;
- switchPosition(prev, select);
- }
-
- }
-
- function down() {
- select = document.forms[0].sl.selectedIndex;
- if ((select < document.forms[0].sl.options.length-1) && (select >= 0)) {
- next = select + 1;
- switchPosition(next, select);
- }
- }
-
- function upOp() {
- if (editOptionDisabled) {
- button='upOp';
- handleSubmit();
- }
- else {
- up();
- }
- }
-
- function downOp() {
- if (editOptionDisabled) {
- button='downOp';
- handleSubmit();
- } else {
- down();
- }
- }
-
- //-->
- </SCRIPT>
-